home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Source / Rtl / Common / RTLConsts.pas < prev   
Pascal/Delphi Source File  |  2001-05-22  |  7KB  |  127 lines

  1. { *************************************************************************** }
  2. {                                                                             }
  3. { Delphi and Kylix Cross-Platform Visual Component Library                    }
  4. {                                                                             }
  5. { Copyright (c) 1995, 2001 Borland Software Corporation                       }
  6. {                                                                             }
  7. { *************************************************************************** }
  8.  
  9. unit RTLConsts;
  10.  
  11. interface
  12.  
  13. resourcestring
  14.   SAncestorNotFound = 'Ancestor for ''%s'' not found';
  15.   SAssignError = 'Cannot assign a %s to a %s';
  16.   SBitsIndexError = 'Bits index out of range';
  17.   SBucketListLocked = 'List is locked during an active ForEach';
  18.   SCantWriteResourceStreamError = 'Can''t write to a read-only resource stream';
  19.   SCharExpected = '''''%s'''' expected';
  20.   SCheckSynchronizeError = 'CheckSynchronize called from thread $%x, which is NOT the main thread';
  21.   SClassNotFound = 'Class %s not found';
  22.   SDelimiterQuoteCharError = 'Delimiter and QuoteChar properties cannot have the same value';
  23.   SDuplicateClass = 'A class named %s already exists';
  24.   SDuplicateItem = 'List does not allow duplicates ($0%x)';
  25.   SDuplicateName = 'A component named %s already exists';
  26.   SDuplicateString = 'String list does not allow duplicates';
  27.   SFCreateError = 'Cannot create file %s';
  28.   SFixedColTooBig = 'Fixed column count must be less than column count';
  29.   SFixedRowTooBig = 'Fixed row count must be less than row count';
  30.   SFOpenError = 'Cannot open file %s';
  31.   SGridTooLarge = 'Grid too large for operation';
  32.   SIdentifierExpected = 'Identifier expected';
  33.   SIndexOutOfRange = 'Grid index out of range';
  34.   SIniFileWriteError = 'Unable to write to %s';
  35.   SInvalidActionCreation = 'Invalid action creation';
  36.   SInvalidActionEnumeration = 'Invalid action enumeration';
  37.   SInvalidActionRegistration = 'Invalid action registration';
  38.   SInvalidActionUnregistration = 'Invalid action unregistration';
  39.   SInvalidBinary = 'Invalid binary value';
  40.   SInvalidDate = '''''%s'''' is not a valid date';
  41.   SInvalidDateTime = '''''%s'''' is not a valid date and time';
  42.   SInvalidFileName = 'Invalid file name - %s';
  43.   SInvalidImage = 'Invalid stream format';
  44.   SInvalidInteger = '''''%s'''' is not a valid integer value';
  45.   SInvalidMask = '''%s'' is an invalid mask at (%d)';
  46.   SInvalidName = '''''%s'''' is not a valid component name';
  47.   SInvalidProperty = 'Invalid property value';
  48.   SInvalidPropertyElement = 'Invalid property element: %s';
  49.   SInvalidPropertyPath = 'Invalid property path';
  50.   SInvalidPropertyType = 'Invalid property type: %s';
  51.   SInvalidPropertyValue = 'Invalid property value';
  52.   SInvalidRegType = 'Invalid data type for ''%s''';
  53.   SInvalidString = 'Invalid string constant';
  54.   SInvalidStringGridOp = 'Cannot insert or delete rows from grid';
  55.   SInvalidTime = '''''%s'''' is not a valid time';
  56.   SItemNotFound = 'Item not found ($0%x)';
  57.   SLineTooLong = 'Line too long';
  58.   SListCapacityError = 'List capacity out of bounds (%d)';
  59.   SListCountError = 'List count out of bounds (%d)';
  60.   SListIndexError = 'List index out of bounds (%d)';
  61.   SMaskErr = 'Invalid input value';
  62.   SMaskEditErr = 'Invalid input value.  Use escape key to abandon changes';
  63.   SMemoryStreamError = 'Out of memory while expanding memory stream';
  64.   SNoComSupport = '%s has not been registered as a COM class';
  65.   SNotPrinting = 'Printer is not currently printing';
  66.   SNumberExpected = 'Number expected';
  67.   SParseError = '%s on line %d';
  68.   SComponentNameTooLong = 'Component name ''%s'' exceeds 64 character limit';
  69.   SPropertyException = 'Error reading %s%s%s: %s';
  70.   SPrinting = 'Printing in progress';
  71.   SReadError = 'Stream read error';
  72.   SReadOnlyProperty = 'Property is read-only';
  73.   SRegCreateFailed = 'Failed to create key %s';
  74.   SRegGetDataFailed = 'Failed to get data for ''%s''';
  75.   SRegisterError = 'Invalid component registration';
  76.   SRegSetDataFailed = 'Failed to set data for ''%s''';
  77.   SResNotFound = 'Resource %s not found';
  78.   SSeekNotImplemented = '%s.Seek not implemented';
  79.   SSortedListError = 'Operation not allowed on sorted list';
  80.   SStringExpected = 'String expected';
  81.   SSymbolExpected = '%s expected';
  82.   STimeEncodeError = 'Invalid argument to time encode';
  83.   STooManyDeleted = 'Too many rows or columns deleted';
  84.   SUnknownGroup = '%s not in a class registration group';
  85.   SUnknownProperty = 'Property %s does not exist';
  86.   SWriteError = 'Stream write error';
  87.   SStreamSetSize = 'Stream.SetSize failure';
  88.   SThreadCreateError = 'Thread creation error: %s';
  89.   SThreadError = 'Thread Error: %s (%d)';
  90.  
  91.   SInvalidDateDay = '(%d, %d) is not a valid DateDay pair';
  92.   SInvalidDateWeek = '(%d, %d, %d) is not a valid DateWeek triplet';
  93.   SInvalidDateMonthWeek = '(%d, %d, %d, %d) is not a valid DateMonthWeek quad';
  94.   SInvalidDayOfWeekInMonth = '(%d, %d, %d, %d) is not a valid DayOfWeekInMonth quad';
  95.   SInvalidJulianDate = '%f Julian cannot be represented as a DateTime';
  96.   SMissingDateTimeField = '?';
  97.  
  98.   SConvIncompatibleTypes2 = 'Incompatible conversion types [%s, %s]';
  99.   SConvIncompatibleTypes3 = 'Incompatible conversion types [%s, %s, %s]';
  100.   SConvIncompatibleTypes4 = 'Incompatible conversion types [%s - %s, %s - %s]';
  101.   SConvUnknownType = 'Unknown conversion type %s';
  102.   SConvDuplicateType = 'Conversion type (%s) already registered in %s';
  103.   SConvUnknownFamily = 'Unknown conversion family %s';
  104.   SConvDuplicateFamily = 'Conversion family (%s) already registered';
  105.   SConvUnknownDescription = '[%.8x]';
  106.   SConvIllegalType = 'Illegal type';
  107.   SConvIllegalFamily = 'Illegal family';
  108.   SConvFactorZero = '%s has a factor of zero';
  109.   SConvStrParseError = 'Could not parse %s';
  110.   SFailedToCallConstructor = 'TStrings descendant %s failed to call inherited constructor';
  111.  
  112.   sWindowsSocketError = 'Windows socket error: %s (%d), on API ''%s''';
  113.   sAsyncSocketError = 'Asynchronous socket error %d';
  114.   sNoAddress = 'No address specified';
  115.   sCannotListenOnOpen = 'Can''t listen on an open socket';
  116.   sCannotCreateSocket = 'Can''t create new socket';
  117.   sSocketAlreadyOpen = 'Socket already open';
  118.   sCantChangeWhileActive = 'Can''t change value while socket is active';
  119.   sSocketMustBeBlocking = 'Socket must be in blocking mode';
  120.   sSocketIOError = '%s error %d, %s';
  121.   sSocketRead = 'Read';
  122.   sSocketWrite = 'Write';
  123.  
  124. implementation
  125.  
  126. end.
  127.